home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_1929.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  348 b   |  1 lines

  1. The members and base classes of a struct are public by default, while in class, they default to private.  Base classes of a struct are public by default while they are private by default with 'class' (however you should make your base classes *explicitly* public, private, or protected).  'Struct' and 'class' are otherwise functionally equivalent.